home *** CD-ROM | disk | FTP | other *** search
- /**
- GRAB Graph Layout and Browser System
-
- Copyright (c) 1989, Tera Computer Company
- **/
-
- /**
- the one structure shared between C and C++ routines:
- information to uniquely identify an edge
- **/
- #ifndef tedge_h
- #define tedge_h
-
- typedef struct tedge TEDGE;
-
- struct tedge
- {
- char *tonode; /* node at the head of the edge */
- char *fromnode; /* node at the tail of the edge */
- char *label; /* label for this edge */
- int ord; /* ordinality (for multigraphs) */
- };
-
- #endif
-